* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  font-family: Arial, sans-serif;
}

/* ========== Kitchen Hero Section ========== */
.kitchen-hero {
    min-height: 40vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url("../../assets/home page image/Hero section Image.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    color: #fff;
}

.kitchen-hero-left h1 {
    font-size: 42px;
    color: #ffd966;
    font-weight: 700;
}

.kitchen-hero-left h2 {
    margin-top: 10px;
    font-size: 32px;
    font-weight: 500;
}

/* ========== Main Content Styling ========== */
.kit-page {
    background-color: #fcfcfc;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 80px;
}

.kit-intro {
    padding: 60px 20px;
    text-align: center;
}

.kit-hero-content h1 {
    font-size: 2.5rem;
    color: #222;
}

.kit-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid Cards (Kitchen & Wardrobe Types) */
.kit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.kit-card {
    background: #ffffff;
    border: 1px solid #ff9800; /* 1px Orange Border */
    border-radius: 12px;
    overflow: hidden;
    transition: 0.4s;
}

.kit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(255, 152, 0, 0.15);
}

.kit-card-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.kit-card-text {
    padding: 25px;
}

.kit-card-text h2 {
    font-size: 1.5rem;
    color: #ff9800;
    margin-bottom: 10px;
}

.kit-card-text p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.kit-section-title {
    text-align: center;
    font-size: 2.2rem;
    margin: 50px 0;
    color: #222;
    text-transform: uppercase;
}

/* Feature Grid Style */
.kit-feat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.kit-feat-item {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border: 1px solid #eee;
    border-bottom: 4px solid #ff9800;
    border-radius: 10px;
}

.kit-feat-item i {
    font-size: 3rem;
    color: #ff9800;
    margin-bottom: 15px;
}

/* Workflow Step Section */
.kit-workflow {
    margin-top: 80px;
    padding: 20px 0;
}

.kit-workflow-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.kit-step {
    background: #ffffff;
    padding: 45px 30px;
    border-radius: 15px;
    border: 1px solid #ff9800;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
}

.kit-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(255, 152, 0, 0.3);
}

.kit-step-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(23, 16, 6, 0.1); 
    display: block;
    margin-bottom: 15px;
}

.kit-step:hover .kit-step-num {
    color: #ff9800;
}

.kit-step h3 {
    font-size: 1.4rem;
    color: #111;
    margin-bottom: 15px;
    font-weight: 600;
}

.kit-step p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 992px) {
    .kit-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .kitchen-hero { padding: 40px 20px; text-align: center; min-height: auto; }
    .kitchen-hero-left h1 { font-size: 28px; }
    .kitchen-hero-left h2 { font-size: 22px; }
    .kit-section-title { font-size: 1.8rem; }
}